home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 / Vol 132.iso / games / nameless.swf / scripts / DefineSprite_1837 / frame_1 / DoAction.as
Text File  |  2011-06-09  |  264b  |  18 lines

  1. if(!setVars)
  2. {
  3.    var health = 100;
  4.    var setVars = true;
  5. }
  6. var onEnterFrame = function()
  7. {
  8.    if(health > _root.health)
  9.    {
  10.       health -= 1;
  11.    }
  12.    else if(health < _root.health)
  13.    {
  14.       health += 1;
  15.    }
  16.    gotoAndStop(101 - health);
  17. };
  18.